What is the difference between constructor and method?
2357
25-Oct-2010
Pushpendra Singh
08-Nov-2010A method is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator.
Constructor does not have a return type.
Name of constructor is the same as that of class in which it is declared.
public class ClassA {public ClassA()
{
// Initilize code in the constructor.
}
}